home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / SNIP0492.ARJ / SSTRCPY.C < prev    next >
C/C++ Source or Header  |  1992-01-05  |  220b  |  14 lines

  1. #include <string.h>
  2.  
  3. char *sstrcpy(char *to, char *from)
  4. {
  5.     memmove(to, from, 1+strlen(from));
  6.     return to;
  7. }
  8.  
  9. char *sstrcat(char *to, char *from)
  10. {
  11.     sstrcpy(to + strlen(to), from);
  12.     return to;
  13. }
  14.